home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 20 / macformat_20.iso / mac / Shareware / Comunicaciones / commsService 3.01 / AppleScripts / DoScript Example < prev    next >
Text File  |  1995-08-15  |  336b  |  12 lines

  1. tell application "commsService"
  2.     try
  3.         with timeout of 300 seconds
  4.             set theAnswer to do script "Archie Server (Australia),GetCurrentVersion,false,true"
  5.             beep
  6.             display dialog "The result of the script execution -- " & return & return & "'" & theAnswer & "'"
  7.         end timeout
  8.     on error errMsg
  9.         display dialog errMsg
  10.     end try
  11. end tell
  12.